(explicit-bash-args): New user option.
authorAndreas Schwab <schwab@suse.de>
Fri, 28 Jun 2002 18:50:21 +0000 (18:50 +0000)
committerAndreas Schwab <schwab@suse.de>
Fri, 28 Jun 2002 18:50:21 +0000 (18:50 +0000)
lisp/shell.el

index ec52a2f3624cbb5004f78fb18bca6c563eb67bfa..5008a773f30dc47fc7d4da59cfe5a95c6c4e5545 100644 (file)
@@ -275,6 +275,14 @@ Value is a list of strings, which may be nil."
   :type '(repeat (string :tag "Argument"))
   :group 'shell)
 
+(defcustom explicit-bash-args
+    ;; Tell bash not to use readline.
+    '("--noediting" "-i")
+  "*Args passed to inferior shell by M-x shell, if the shell is bash.
+Value is a list of strings, which may be nil."
+  :type '(repeat (string :tag "Argument"))
+  :group 'shell)
+
 (defcustom shell-input-autoexpand 'history
   "*If non-nil, expand input command history references on completion.
 This mirrors the optional behavior of tcsh (its autoexpand and histlit).